15c306ec0633d2c35887f333ac6b21d15689d403,modules/portal/portal-portlet-container-test/src/testIntegration/java/com/liferay/portal/portlet/container/test/ActionRequestPortletContainerTest.java,ActionRequestPortletContainerTest,testPortalAuthenticationToken,#,238

Before Change



		url = HttpUtil.setParameter(url, "p_auth", response.getBody());

		Map<String, List<String>> headers = new HashMap<>();

		headers.put("Cookie", response.getCookies());

		response = PortletContainerTestUtil.request(url, headers);

		Assert.assertEquals(200, response.getCode());
		Assert.assertTrue(testPortlet.isActionCalled());

After Change



		String url = portletURL.toString();

		url = HttpUtil.setParameter(url, "p_auth", response.getBody());

		response = PortletContainerTestUtil.request(
			url, Collections.singletonMap("Cookie", response.getCookies()));

		Assert.assertEquals(200, response.getCode());
		Assert.assertTrue(testPortlet.isActionCalled());